home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 February: Tool Chest / Dev.CD Feb 95 / Dev.CD Feb 95.toast / New System Software Extensions / ASLM SDK v1.1.2 / ASLM Examples / Inspector / Sources / InspectorCommon.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-21  |  1.2 KB  |  53 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        InspectorCommon.h
  3.  
  4.     Contains:    Common CPlusPlus and Rez include file for TInspector.
  5.  
  6.     Copyright:    © 1991-1993 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #ifndef __INSPECTORCOMMON__
  11. #define __INSPECTORCOMMON__
  12.  
  13. #define kInspectorErrStrings 258        /* error strings */
  14. #define kWindowStackerLibraryMissing 1    /* index into error strings */
  15.  
  16. #define    rMenuBar        128            /* application's menu bar */
  17. #define    rAboutAlert        128            /* about alert */
  18. #define    rDocWindow        128            /* application's window */
  19. #define    rFolderDialog    130            /* dialog for choosing a folder */
  20.  
  21.  
  22. #define    mApple                    128        /* Apple menu */
  23. #define    iAbout                    1
  24.  
  25. #define    mFile                    129        /* File menu */
  26. #define    iClose                    1
  27. #define    iQuit                    2
  28.  
  29. #define    mEdit                    130        /* Edit menu */
  30. #define    iUndo                    1
  31. #define    iCut                    3
  32. #define    iCopy                    4
  33. #define    iPaste                    5
  34. #define    iClear                    6
  35.  
  36. #define    mWindows                131        /* Windows menu */
  37. #define    iStack                    1
  38. #define    iTile                    2
  39.  
  40. #define    mCommands                132        /* Commands menu */
  41. #define    iRegisterFolder            1
  42. #define    iUnregisterFolder        2
  43. #define    iRegisterFile            4
  44. #define    iUnregisterFile            5
  45. #define    iReloadLibraryManager    7
  46. #define    iUnloadLibraryManager    8
  47. #define    iGotoSimpleProgram        10
  48. #define    iTraceLogOn                12
  49. #define    iTraceLogOff            13
  50.  
  51.  
  52. #endif
  53.